home *** CD-ROM | disk | FTP | other *** search
/ Word Perfect Main Street: Paper Planes / WordPerfect Main Street - Paper Planes.iso / mac / p29-32 / 00052_Script_52 < prev    next >
Text File  |  1994-07-31  |  533b  |  20 lines

  1. on exitFrame
  2.   -- restore normal mousedown handling
  3.   when mouseDown then nothing
  4.   cursor -1
  5.   
  6.   -- then clean up memory
  7.   global LastQT
  8.   set beforeQT = the name of cast ((the number of cast LastQT) -1)
  9.   unloadCast beforeQT, LastQT
  10.   
  11.   -- and get the buttons states correct
  12.   global theVCRButtons
  13.   global FastForward, PlayOn
  14.   if not FastForward and PlayOn then
  15.     -- restore the play button to 'stop' (unless we just canceled Fast Fwd)
  16.     mVCRStopButton(theVCRButtons)
  17.     set PlayOn = FALSE
  18.   end if
  19. end
  20.